KeyDao

public interface KeyDao

This interface provides the methods that the rest of the app uses to interact with data in the Key table.

Functions

delete
Link copied to clipboard
abstract Unit delete(Key key)
deleteAllExcept
Link copied to clipboard
abstract Unit deleteAllExcept(Array<String> keyIds)
deleteById
Link copied to clipboard
abstract Unit deleteById(String kid)
getAll
Link copied to clipboard
abstract List<KeygetAll()
getAllByIds
Link copied to clipboard
abstract List<KeygetAllByIds(Array<String> keyIds)
getById
Link copied to clipboard
abstract Key getById(String kid)
getCount
Link copied to clipboard
abstract Integer getCount()
insert
Link copied to clipboard
abstract Unit insert(Key key)